b11613a29edf7beea44afc4b0c1a592dd22862d2,source/com/intellij/openapi/vcs/changes/ui/ChangesListView.java,DragImageFactory,createImage,#JTable#number#,531

Before Change


    }

    public static Image createImage(final JTable table, int column) {
      final int height = Math.min(100, table.getSelectedRowCount() * table.getRowHeight());
      final int width = table.getColumnModel().getColumn(column).getWidth();

      final BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);

After Change


    }

    public static Image createImage(final JTable table, int column) {
      final int height = Math.max(20, Math.min(100, table.getSelectedRowCount() * table.getRowHeight()));
      final int width = table.getColumnModel().getColumn(column).getWidth();

      final BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);